home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2006 November
/
PCWorld_2006-11_cd.bin
/
domacnost a kancelar
/
findgraph
/
fgraph.exe
/
{app}
/
ApprSource
/
ExpPow.H
< prev
next >
Wrap
C/C++ Source or Header
|
2002-06-26
|
1KB
|
27 lines
#if !defined(_EXPPOW_H)
#define _EXPPOW_H
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
int __declspec(dllexport) __stdcall MaxOfFactors();
int __declspec(dllexport) __stdcall Prepare (double fMinU, double fMaxU, double fMinV, double fMaxV,
double *pfU, double *pfV, double *pfW, int nPoints,
double *pfParams , int nParams ,
double *pfFactors, int nFactors);
double __declspec(dllexport) __stdcall CalcInPoint(double fU, double *pfFactors, int nFactors);
int __declspec(dllexport) __stdcall FunctionTitle (LPTSTR pstr, int nMaxLength);
int __declspec(dllexport) __stdcall FunctionName (LPTSTR pstr, int nMaxLength);
int __declspec(dllexport) __stdcall FunctionString(double *pfFactors, int nFactors,
LPTSTR pstr, int nMaxLength);
int __declspec(dllexport) __stdcall ParamInfo(int nParam, LPTSTR pstr, int nMaxLength, double *pfDefault);
double CalcError(double *pfU, double *pfV, int nPoints,
double *pfFactors, int nFactors);
#endif